home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d927.lha / Ftp / src / Makefile < prev    next >
Makefile  |  1993-10-07  |  1KB  |  34 lines

  1. #
  2. # Copyright (c) 1988 Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation,
  8. # advertising materials, and other materials related to such
  9. # distribution and use acknowledge that the software was developed
  10. # by the University of California, Berkeley.  The name of the
  11. # University may not be used to endorse or promote products derived
  12. # from this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14. # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15. # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. #    @(#)Makefile    based on 5.9 (Berkeley) 4/20/89
  18. #
  19. #
  20. # define NOVFPRINTF if your library doesnt have one 
  21. # This hack works on most systems that dont have vfprintf()
  22. #
  23. CFLAGS=    idir=netinclude: nostkchk define=AMI_TCP ignore=100+161+85+62 math=ffp opt
  24. #CFLAGS= -so -iinet:include -wn -ff
  25. SRCS=    amiga.c cmds.c cmdtab.c ftp.c glob.c main.c ruserpass.c domacro.c getpass.c herror.c
  26. OBJS=    amiga.o cmds.o cmdtab.o ftp.o glob.o main.o ruserpass.o domacro.o getpass.o herror.o
  27. MAN=    ftp.0
  28.  
  29. all: ftp
  30.  
  31. ftp: $(OBJS)
  32.     sc link math=ffp pname=$@ $(OBJS)
  33. #    ln -o $@ $(OBJS) -lmf -lc
  34.